home *** CD-ROM | disk | FTP | other *** search
/ Grapevine 20 / Grapevine 20 (Disk 1 of 2).adf / Files / arexxexamps.lha / ARTICLES / AREXX_EXAMPLES / Example8.rexx < prev    next >
OS/2 REXX Batch file  |  1980-01-07  |  118b  |  9 lines

  1. /* Example 8 */
  2.  
  3. Say "Enter Age : "
  4. Parse Pull num
  5.  
  6. If num > 21 Then
  7.    Say "Hello, Crusty"
  8. Else
  9.    Say "Hello, Child"